home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.dom;
-
- import org.w3c.dom.Attr;
- import org.w3c.dom.DOMException;
- import org.w3c.dom.Document;
- import org.w3c.dom.Element;
- import org.w3c.dom.NamedNodeMap;
- import org.w3c.dom.Node;
- import org.w3c.dom.NodeList;
-
- public final class OwnedAttr implements Attr {
- Attr attr;
- Element elem;
-
- public OwnedAttr(Node var1, Node var2) {
- this.attr = (Attr)var1;
- this.elem = (Element)var2;
- }
-
- public Element getOwnerElement() {
- return this.elem;
- }
-
- public String getNodeName() {
- return this.attr.getNodeName();
- }
-
- public String getNodeValue() throws DOMException {
- return this.attr.getNodeValue();
- }
-
- public void setNodeValue(String var1) throws DOMException {
- this.setNodeValue(var1);
- }
-
- public short getNodeType() {
- return this.attr.getNodeType();
- }
-
- public Node getParentNode() {
- return this.attr.getParentNode();
- }
-
- public NodeList getChildNodes() {
- return this.attr.getChildNodes();
- }
-
- public Node getFirstChild() {
- return this.attr.getFirstChild();
- }
-
- public Node getLastChild() {
- return this.attr.getLastChild();
- }
-
- public Node getPreviousSibling() {
- return this.attr.getPreviousSibling();
- }
-
- public Node getNextSibling() {
- return this.attr.getNextSibling();
- }
-
- public NamedNodeMap getAttributes() {
- return this.attr.getAttributes();
- }
-
- public Document getOwnerDocument() {
- return this.attr.getOwnerDocument();
- }
-
- public Node insertBefore(Node var1, Node var2) throws DOMException {
- return this.attr.insertBefore(var1, var2);
- }
-
- public Node replaceChild(Node var1, Node var2) throws DOMException {
- return this.attr.replaceChild(var1, var2);
- }
-
- public Node removeChild(Node var1) throws DOMException {
- return this.attr.removeChild(var1);
- }
-
- public Node appendChild(Node var1) throws DOMException {
- return this.attr.appendChild(var1);
- }
-
- public boolean hasChildNodes() {
- return this.attr.hasChildNodes();
- }
-
- public Node cloneNode(boolean var1) {
- return this.attr.cloneNode(var1);
- }
-
- public String getName() {
- return this.attr.getName();
- }
-
- public boolean getSpecified() {
- return this.attr.getSpecified();
- }
-
- public String getValue() {
- return this.attr.getValue();
- }
-
- public void setValue(String var1) {
- this.attr.setValue(var1);
- }
-
- public void setPrefix(String var1) {
- }
-
- public String getPrefix() {
- return null;
- }
-
- public String getNamespaceURI() {
- return null;
- }
-
- public boolean supports(String var1, String var2) {
- return false;
- }
-
- public void normalize() {
- }
-
- public String getLocalName() {
- return null;
- }
- }
-